home *** CD-ROM | disk | FTP | other *** search
/ BBS Toolkit / BBS Toolkit.iso / gt_power / bguti23.zip / RELAY.SCR < prev    next >
Text File  |  1990-03-25  |  1KB  |  35 lines

  1. ;  <<  B.J. Guillot  >>
  2. ;******************
  3. ;* PCRelay Script *
  4. ;******************
  5. ;
  6. ;make sure to put in your name and node name where I have "TRANQUIL".
  7. ;make sure to change the paths to match yours.
  8. ;
  9. QUIET ON
  10. ;you don't want the alarm to sound
  11. NAME "RelayNet Hub"
  12. DIAL "347-1091" WITH REDIAL
  13. ;dial the hub until you get in, change to the number of your hub
  14. ;this script assumes the hub is running pc board without prologon
  15. WAIT FOR "(Enter)=no?"
  16.   SENDLN "N Q NS"
  17. ;tell the hub you don't want ansi, etc.
  18. WAIT FOR "first name?"
  19.   SENDLN "NODE TRANQUIL <PASSWORD>"
  20. ;lets the hub know who you are
  21. WAIT FOR "(Enter)=yes?"
  22.   SENDLN "N"
  23. ;tells the hub you don't want to check for mail
  24. WAIT FOR "Command?"
  25.   SENDLN "open 6"
  26.   SHELL "DSZ.COM sz C:\GT\BBSJUNK\TRANQUIL.RLY"
  27. ;tells the hub to open the hubdoor and lets you immediately
  28. ;shell to DSZ and send your node file.
  29. WAIT 180 FOR "000"
  30.   SHELL "DSZ rz C:\GT\BBSJUNK\IN.RLY"
  31. ;wait for the hub to finish packing mail and download file
  32. SENDLN "G"
  33. ;goodbye hub
  34. EXIT
  35.